home *** CD-ROM | disk | FTP | other *** search
/ SuperModels in the Rainforest / SuperModels in the Rainforest.iso / rain.dxr / 00103.ls < prev    next >
Encoding:
Text File  |  1995-10-13  |  398 b   |  21 lines

  1. on mouseUp
  2.   global lightswitch
  3.   if lightswitch = 1 then
  4.     puppetSprite(3, 1)
  5.     spriteBox(3, 0, 0, 640, 480)
  6.     set lightswitch to 0
  7.     put lightswitch
  8.     go("big")
  9.     exit
  10.   end if
  11.   if lightswitch = 0 then
  12.     puppetSprite(3, 0)
  13.     set lightswitch to 1
  14.     put lightswitch
  15.     set the visible of sprite 3 to 0
  16.     set the visible of sprite 3 to 1
  17.     go("little")
  18.     exit
  19.   end if
  20. end
  21.